Chris99391 Posted March 27, 2017 Share Posted March 27, 2017 Bonjour, Je cherche à override le prix des produits grace à un select voici comment j'ai procéder: <select name="is_format" id="is_format"onchange="detailsProductShow('is_format')" class="options_product"> {foreach from=$price_format_page key=id_attribute item=format_attribute} <option value="{$id_attribute}"{if (isset($smarty.get.$formatName) && $smarty.get.$formatName|intval == $id_attribute) || $format.default == $id_attribute}{/if} title="{$id_attribute|escape:'html':'UTF-8'}" {if $smarty.cookies.is_format == $id_attribute|escape:'html':'UTF-8'}selected{/if}>{$id_attribute|escape:'html':'UTF-8'}</option> {/foreach} </select> J'importe mes données en Json lorsque que je fait un debug sur ma variable $price_format_page, cela me retourne "stdClass Object ( [A4] => 0 [A3] => 0.2 [A2] => 0.8 [A1] => 1 )" J'affiche bien mes resultats dans mon select à savoir "A4", "A3" etc... maintenant je voudrais passer les valeurs de ces resultats à savoir "0", "0.2"... dans mon product.js pour les ajoutés au prix. Avez vous une idée comment faire cela ? Merci. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now