Hi,
I need to diable the Done/Cancel popup, when user edits any of the cell in JQUERY igGrid.
Can it be done using any of the igGrid features. It is required urgently.
Thanks in adavnce,
Laxmi.
Hi Laxmi,
you can just set the showDoneCancelButtons: false, in the Updating feature options.
Hope it helps. Thanks,
Angel
Hi Angel,
Thanks for quick resolution. I need to enable tooltips for igGrid.
Can you please let us know which features needs to use.
Thanks in advance.
Laxmi
I need to enable tooltips for igGrid.
I tried to use Tooltips. But i get an error of No such widgets are loaded: igGridTooltips.
Please suggets mhow to achieve the same. It is required urgently.
Thanks in advance. Laxmi
you can enable tooltips for igGrid thought this snippet:
In JS:
$("#gridTooltips").igGrid({
columns: [
{ headerText: "Product ID", key: "ProductID", dataType: "number" },
{ headerText: "Product Name", key: "Name", dataType: "string" },
{ headerText: "Product Number", key: "ProductNumber", dataType: "string" }
],
features: [
{
name: "Tooltips",
columnSettings: [
{ columnKey: "ProductID", allowTooltips: false },
{ columnKey: "Name", allowTooltips: true },
{ columnKey: "ProductNumber", allowTooltips: true }
visibility: "always",
showDelay: 1000,
hideDelay: 500
}
width: "500px",
dataSource: products
});
In HTML:
<div id="gridTooltips"></div>
In case, you don't use combined file for all widgets, you have to reference the tooltip file - ig.ui.grid.tooltips.js
Regards,
Stanimir Todorov