I popolate the Array Try with a Javascript in the Design, when you made your choice and clik button run this code var name_arr = []; checkboxgroup = $('[name="Scelta"]'); for (var i = 0; i < checkboxgroup.length-1; i++) { console.log(i); var currentCheckBox = jQuery(checkboxgroup ); var cu...
Hi! I've got an object and it is composed by two element a string and a boolean and the I define an array of thi object Something like Object wiht name and value and Try is the array of Object. I've used this Object as a local storage for my checkbox so if an item is checked I can save the name chec...
Hi! I think I miss something because I'm not able to do a thing. I've read a lot of things but something seems doesn't work. I have a checkbox list and a search button, you can select multiple choice and then click the search to retrive with a service all the $or queries for the elements selected. I...
Hi! I have a question about the response of my service and the chance to group records I've found. I need to use something like group by command SQL when I map the response of my service into a grid. Eg if I have those names and related values Antonio Option1 Antonio Option2 Daniele Option2 Marco Op...
Hi! I've got two buttons on UI layer and if clicked they set two different local storage variables eg: a and b. Now I'm trying to refine the Rest Service in "Before Send" and I have to put them together in the where condition of my Service. Something like select * from table where a.table ...