Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
105
Hyperlink Column
posted

Hi,

We are facing technical difficulties on applying column format on dynamically binding the column values in the ignite UI Grid by using JQUERY. As per the requirement we required to provide the Hyperlink for the some of the columns in the grid and by clicking the hyperlink we required to do the action.

could you please help me on this to resolve this issue.

The code sample attached for your reference.

View Page:

function BindStudyGrid(gridID, gridData) {

$("#" + gridID).igGrid({
primaryKey: "StudyId",
autoGenerateColumns: true,
width: "100%",
height: "350px",
columns: [
{ headerText: "ID", key: "StudyId", dataType: "number", width: "0px" }
],
fixedHeaders: true,
autofitLastColumn: false,
features: [
{
name: "Paging"
},
{
name: "Filtering"
},
{
name: "Sorting"
}
],
enableHoverStyles: true,
dataSource: gridData
});
}