Skip to content

Replies

0
Tapas Bisoi
Tapas Bisoi answered on Mar 6, 2020 11:45 AM

No problem Martin,I have got a workaround and its working . thanks for your support

0
Tapas Bisoi
Tapas Bisoi answered on Mar 5, 2020 9:45 AM

ok, I am getting issue for parent grid which is having special characters in primary key

0
Tapas Bisoi
Tapas Bisoi answered on Mar 4, 2020 2:15 PM

Hi Martin,

first node/parent node is having only 1 column which we are defining like 

columns: [

{key: “EMPLOYEE_NAME”, headerText: “Business Service Rep” ,dataType:”string”}]

and we are giving EMPLOYEE_NAME as a primary key which you can see form the above code.

Is there any way by which we can bind the hierarchical grid with the special characters primary key because as per our understanding , if primary key in iggrid is having special characters, grid is getting broken .

0
Tapas Bisoi
Tapas Bisoi answered on Jan 13, 2020 2:29 PM

Hi Vasya,

When we are trying the same thing in our code, we are getting error in lob.js file while click on the row for editing.

And also I do not want the use of angular.min.js file . Is it possible to achieve the same without angular ?

0
Tapas Bisoi
Tapas Bisoi answered on Jan 10, 2020 3:58 PM

Hi Team,

any update on the same.

0
Tapas Bisoi
Tapas Bisoi answered on Jan 2, 2020 1:32 PM

nowhere we have set the localSchemaTransform . 

We have tried with date format as well but nothing is working

0
Tapas Bisoi
Tapas Bisoi answered on Dec 31, 2019 11:43 AM

Hi Stamen,

Below is my function which is getting called on export button click

$("#exportButton").on("igbuttonclick", function () {

$.ig.GridExcelExporter.exportGrid($("#csagrid"), {
fileName: "test"
}, {
dataExportMode: "allRows",
exportEnding: function (e, args) {

var columns = args.worksheet.columns();
columns.item(columns.count() - 1).cellFormat().formatString("dd/MMM/YYYY");
}
});
})

 

and below is the code where I am assigning data type as date for date column

columns: [

{ headerText: "CSA #", key: "CSA_NB", dataType: "string" },

{ headerText: "Entry Date", key: "ENTRY_DATE", dataType: "date" }

]