Hi
See attached print screen.
I would like to add some resources in code behind. And on the left side, i would like to see only DAYS.
Can somebody show me an code-behind code please ?
Thanks
Abdullah
i try to connect PivotGrid to my model create on Azure analyse service.
<
telerik:RadPivotGrid
ID
=
"RadPivotGrid1"
runat
=
"server"
RenderMode
=
"Lightweight"
AllowSorting
=
"True"
FieldsPopupSettings-AggregateFieldsMinCount
=
"2"
AllowPaging
=
"True"
PageSize
=
"20"
EnableConfigurationPanel
=
"True"
EnableZoneContextMenu
=
"True"
AggregatesPosition
=
"Rows"
Culture
=
"fr-FR"
>
<
OlapSettings
ProviderType
=
"Adomd"
AdomdConnectionSettings-ConnectionString
=
""
>
<
AdomdConnectionSettings
Cube
=
"TabularProject2"
DataBase
=
"myanalyse"
ConnectionString
=
"Provider=MSOLAP;Data Source=asazure://westeurope.asazure.windows.net/myanalyse;Initial Catalog=analyseservicedatabase;User ID=xxxxxxxxx;Password=xxxxxxx;Persist Security Info=True;Impersonation Level=Impersonate"
></
AdomdConnectionSettings
>
</
OlapSettings
>
<
ConfigurationPanelSettings
Position
=
"Left"
LayoutType
=
"OneByFour"
DefaultDeferedLayoutUpdate
=
"true"
/>
<
ClientSettings
>
<
Scrolling
AllowVerticalScroll
=
"false"
ScrollHeight
=
"600px"
/>
</
ClientSettings
>
</
telerik:RadPivotGrid
>
but that not work, Pivot Grid is displayed without any data and i have no error.
Any idea ?
hi !
I am working on a project that I receive data by schema via datasource . after receiving this data from specific URL I have to send one of these them (that is an id) to another URL to receive a name . now the problem is template is not working here cause connecting to 2nd URL takes time and grid is ready by that time ...
what should I do ?
any guides ?
regards
<
telerik:GridTemplateComlumn
DataField
=
"Venues"
HeaderText
=
"Venue"
>
I would like to add a tooltip to this column header but have been having a hard time figuring out a way to do this in JavaScript.
I have tried using the following scripts:
document.querySelectorAll(
"[value=Venue]"
).setAttribute(
'title'
,
'this is a tooltip'
);
$(
"[value=Venue"
]).prop(
'title'
,
'this is a tooltip'
);
$(
"[HeaderText=Venue"
).prop(
'title'
,
'this is a tooltip'
);
I understand that telerik has findControl() and findElement() to help with element selection, but haven't had too much luck with those either.
Does anyone know a way that I can select this specific column header with JavaScript and apply a tooltip (title)?
Hi,
I want to make a multiple sorting + natural sorting column. Multiple sorts are working fine but not for natural sort.
May refer to attached image.
Thanks.
Hi everyone,
I have a RadGrid with batchedit mode in a usercontrol, and I want to have different editors based on the type of the parameter. For example : if the parameter is a string, the editor should allow to write strings, or datetime, boolean, integer, even files so the user can download the file and also images so they can appear on the radgrid !
I found something similar to what I want but it's using Kendo UI : https://docs.telerik.com/kendo-ui/knowledge-base/grid-different-editor-based-on-column-value
Any suggestions ?
Thank you