our business team decided to use different approach.. we are now using searching with dialog.. which is working for most cases..
Thanks
what we want is exactly happening when i set multimail = true.. but we want same functionality without clicking on checkbox.. but clicking on entire row..
is this possible ?
sorry correct link for image is
one more piece of info .. on close of date picker.. grid is not taking date string and query field is still empty.
i tried following
|
1 2 3 4 5 6 |
$(el).bind('dp.hide',function(e){ console.log(e.date.format('MM-DD-YYYY')); $(this).val(e.date.format('MM-DD-YYYY')); $(this).trigger("change"); |
but still not working..
thanks
thanks for reply
i did read the documentation. but i am not able to find answers.thats why i asked
finally i was able to fix the issue.. i was using different version of bootstrap(3.3.1) instead of 3.3.4 that grid needs.. but i do have one more issue..
i need to align some column header text to left align. and i am doing that by following code in
$grid.jqGrid (‘setLabel’, ‘symbol’, ‘Symbol’, {‘text-align’:’left’}); in gridComplete.
but after this, i dont see colmenu disappears.
is there a another way to align header text ?
to itscor,,
you can just go to download page (http://guriddo.net/?page_id=103292) and click on button which says ‘download’ to download library
found the issue.. it was because of method
$grid.jqGrid(‘setFrozenColumns’).. if i call ‘destroyfrozencolumns’ before show/hide its working fine.
thanks
sorry for late reply.but its working as expected.. i had problem in data
more info.. i am trying set the dates values using setCell method.
we changed the code so that id would always be integer
ok. sorry.. i will create a new post
one more question..
how can i use frozen columns without setting width of grid.. i do want grid to take parent width.. (thats why i am not setting width:xxx) then frozen:true would not work..
but if i do $grid.jqGrid({
width:700,
xx…..
});
$grid.jqGrid(‘setFrozenColumns’);
then things are working.. but if i removed ‘width:700’ then frozen is not working..
i have problem formatting data with dates. from server i am getting unix timestamp like ‘1494216000000’.. i tried below in colmodel
{label:’Ex Div Date’,name:’divExDate’,width:100,sorttype:’date’,align:’right’,formatter:’date’,formatoptions: {srcformat:’U’,newformat:’ShortDate’}}) which is not working..
then i converted unix date into something like
$grid.jqGrid(‘setCell’, rowId, “divExDate”, “2017-05-17”);
with
{label:’Ex Div Date’,name:’divExDate’,width:100,sorttype:’date’,align:’right’,formatter:’date’,formatoptions: {srcformat:’Y-m-d’,newformat:’ShortDate’}});
which is not working as well..
what is the default format which i can use so that sorting and displaying works properly.. ( i can format server date to whatever default format jqgrid is expecting)
Thanks
one more question. how can i control the alignment of column header ? i want some columns title to align left and some to align right .
thanks
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top