jQWidgets Forums
Forum Replies Created
-
Author
-
October 27, 2014 at 11:24 am in reply to: how to use select all item in dropdown list how to use select all item in dropdown list #61659
Hi dimitar,
In JQXGrid if we use filter as filtertype: ‘checkedlist’ will get checkbox dropdown list ,in that checkbox dropdown list first it have (Select All) default option, if i check that (Select All) option all the below items will checked or if i unselect (Select All) option all the below item will uncheck and then if uncheck any item other than (Select All) option ,(Select All) option will set as intermediate state and also if i uncheck all the items except (Select All) then (Select All) option will automatically set to uncheck mode,how this can be down by JQXDropDownList please send me an example with complete code.I am also using (Select All) option in my JQXdropdownlist …October 8, 2014 at 3:54 am in reply to: how to get old seleted item on change function how to get old seleted item on change function #60781hi team,
Please reply for the above post….September 24, 2014 at 9:26 am in reply to: Getting data through data adapter Getting data through data adapter #59977Hi peter ,
I asked in that two format which will good to use for loading data to data adapter when we get data from serverJuly 25, 2014 at 4:38 am in reply to: Grid not update data to another grid when second grid is in collapse mode Grid not update data to another grid when second grid is in collapse mode #57681Hi peter,
But in 2.7 version even the grid is collapsed on page load data updation for collapsed grid is working fine .Why not in 3.3 version.Please reply for thisJuly 23, 2014 at 2:03 pm in reply to: Grid not update data to another grid when second grid is in collapse mode Grid not update data to another grid when second grid is in collapse mode #57629Hi peter,
But in 2.7 version even the grid is collapsed on page load data updation for collapsed grid is working fine .Why not in 3.3 versionJune 12, 2014 at 8:40 am in reply to: how to make CROSS- Domain Request how to make CROSS- Domain Request #55771hi peter,
Whether JSONP will support for same domain, when my server and Data base are in same domain..April 21, 2014 at 1:59 pm in reply to: Create jqGrid Column Dynamically Create jqGrid Column Dynamically #53347HI N_Cool
First u have to make column list into array then create two array one grid column property and another one is dataField array.
Consider the array colDataFieldArray which contain three values [Jan,Feb,Mar];
var gridColumns = [];//Array used store grid column properties
var dataFieldColumns = [];//Array used to store grid column datafield
var colDataFieldArray =[Jan,Feb,Mar]//This is the array which contain your Dynamic column datafields
for(var i=0;i<colDataFieldArray.length;i++){
var colStr = $.trim(colDataFieldArray[i]);
gridColumns.push({ text:”Dynamic Columns Label”, dataField: colStr, align : ‘center’, cellsalign:’right’, width: 50});
dataFieldColumns.push({name:colStr, type: ‘float’});
}
var GridURL =
{
datatype: “json”,
datafields: dataFieldColumns,
cache: false,
url://provied the URL here
};
var dataAdapter = new $.jqx.dataAdapter(GridURL);$(“#JqxGrid”).jqxGrid({
width: 150,
autoheight: true,
source : dataAdapter,
editable : true,
rowsheight: 20,
columnsresize:true,
enabletooltips:true,
verticalscrollbarlargestep: 50,
scrollbarsize: 15,
selectionmode : ‘multiplecellsadvanced’,
columns :gridColumns
});April 18, 2014 at 9:33 am in reply to: cell selection misbehaviour cell selection misbehaviour #53278HI Peter,
In my grid i am using selectionmode as ‘multiplecellsadvanced’ and along with i am using filter, for showing the filter showfilterrow: true has to set. If u notice http://www.jqwidgets.com/jquery-widgets-demo/demos/jqxgrid/index.htm#demos/jqxgrid/filterrow.htm. example and try to select the multiple cells (i.e) if i select first two column then other column values are get focused.If i click outside that focused cell values are getting unfocus.This issue cannot come in when i remove the property showfilterrow in my grid.April 18, 2014 at 9:14 am in reply to: cell selection misbehaviour cell selection misbehaviour #53276HI Team,
Plz reply for this issue as soon as possible.HI serder,
see the example http://www.jqwidgets.com/jquery-widgets-demo/demos/jqxgrid/index.htm?(arctic)#demos/jqxgrid/rowediting.htm in that quantity column if u enter negative value it popup that quatity should be 0-150 message without the button click and if u press ESC key to close the pop up.April 11, 2014 at 6:15 am in reply to: how to avoid screen flickering(Moving UP and Down) in IE9(jQWidgets2.7) how to avoid screen flickering(Moving UP and Down) in IE9(jQWidgets2.7) #52918hi,
Please reply for this issue….March 28, 2014 at 12:05 pm in reply to: How to freeze or pinned last two row How to freeze or pinned last two row #52141Hi,
can you add this functionality in future or in next release.Hi Dimitar,
Thank you very much its working fine. -
AuthorPosts