jQWidgets Forums
Forum Replies Created
-
Author
-
May 7, 2013 at 7:45 pm in reply to: Changing the row color in Grid Changing the row color in Grid #20695
Hi Peter,
Thanks for the reply.
My requirement is to change the color of the whole row where the Status column has value P. Cellrenderer applies to one cell at a time and the status column is the last column in the grid. When the rendering reaches at that column it changes the color of the value in that columns. I am looking for a rowrenderer kind of a renderer
Thanks
May 3, 2013 at 12:49 pm in reply to: Tooltip is not appearing on Combo Box Tooltip is not appearing on Combo Box #20532Hi Dimitar,
It is working now. The way I wrote my code is to define all the widgets, the way they appear on the web page i.e. Menu, Combo Box and then the Panel. After this I had tool tip definitions and the tool tip for combo box was not working. Once I moved the Combo Box tool tip definition right after the Combo Box definition, just like you mentioned in your example above, it started appearing.
Thanks for the help.
I was able to write the function. Here is the code
$(“#saveCategory”).click (function() {
var items = $(“#jqxlistbox”).jqxListBox(‘getItems’);
var length = items.length;
var mylist = [];
for (var i = 0; i < length; i++) {
var row = [];
row["cname"] = items[i].value;
row["cvalue"] = items[i].label;
mylist[i] = row;
}
console.log(mylist);
//console.log(mylist);
$('#myCatgories').value = mylist;
});here is the HTML
<div><input type="hidden" name="myCatgories[]" id="myCatgories"></div>
I checked on the console and data is there but there is empty array in the POST. What am I doing wrong?
Thanks
“
“
here is the html. I don’t know what happened witht the orginal one
Thanks
Hi Peter,
Thanks for the quick response. I was able to build the array but struggling it in submitting using a hidden input.
here is java script code
$(“#saveCategory”).jqxButton();
$(“#saveCategory”).click (function() {
var items = $(“#jqxlistbox”).jqxListBox(‘getItems’);
var length = items.length;
var mylist = new Array();
for (var i = 0; i < length; i++) {
var row = {};
row["cname"] = items[i].value;
row["cvalue"] – items[i].label;
mylist[i] = row;
}here is html
how can I link it
Thanks
-
AuthorPosts