grdCMT.ExportSettings.ExportOnlyData =
true;
grdCMT.ExportSettings.IgnorePaging =
true;
grdCMT.ExportSettings.OpenInNewWindow =
true;
grdCMT.ExportSettings.HideStructureColumns =
true;
grdCMT.ExportSettings.FileName = lstrFileName;
Is it possible this is being caused because I am using RadWindows?
function PaneDockedHandler() { |
var slidingZone=$find("<%= szMyZone.ClientID %>"); |
var dockedPane = slidingZone.getPaneById(slidingZone.get_dockedPaneId()); |
if (dockedPane) { |
dockedPane.hideTab(); |
} |
} |
function BeforePaneUndockedHandler(slidingZone) { |
var slidingZone=$find("<%= szMyZone.ClientID %>"); |
var undockedPane = slidingZone.getPaneById(slidingZone.get_dockedPaneId()); |
if (undockedPane) { |
undockedPane.showTab(); |
} |
} |
<telerik:RadSplitter ID="rsWB" |
runat="server" |
Height="100%" |
Width="100%" |
Orientation="Vertical" |
ResizeWithParentPane="False" |
ResizeWithBrowserWindow="True" |
BorderSize="0" |
VisibleDuringInit="False" |
Skin="Windows7" > |
<telerik:radpane runat="server" id="lPane" Scrolling="None" Width="22px" Height="100%"> |
<telerik:RadSlidingZone id="szMyZone" runat="server" width="22px" Height="100%" SlideDuration="250"> |
<telerik:RadSlidingPane id="spProcess" title="Process Properties" runat="server" width="200px" Height="100%" Scrolling="none" OnClientDocked="PaneDockedHandler" OnClientBeforeUnDock="BeforePaneUndockedHandler"> |
My Pane Content |
</telerik:RadSlidingPane> |
</telerik:RadSlidingZone> |
</telerik:radpane> |
<telerik:radpane runat="server" id="rPane" Scrolling="None" Width="100%" Height="100%"> |
Right Pane Content |
</telerik:radpane> |
</telerik:RadSplitter > |
Hi,
I am Using RadTreeList . In RadTreeList I am Using InPlace Edit Mode And I am Trying to the update values by Using RadTreeList1_UpdateCommand
The Above is event is fired and values are update on db but on the RadTreeList the updated value is not shown . I have to refresh or reload the page to see the updated value .
Please update on how to resolve this ASAP.
<telerik:RadTreeList runat="server" ID="RadTreeList2" DataKeyNames="CloseOutID"
ParentDataKeyNames="ParentID" AutoGenerateColumns="False"
AllowMultiItemEdit="True" EditMode="InPlace" >
<Columns>
<telerik:TreeListEditCommandColumn UniqueName="EditCommandColumn" ShowAddButton="false" ButtonType="ImageButton">
<ItemStyle CssClass="MyImageButton" />
</telerik:TreeListEditCommandColumn>
<telerik:TreeListBoundColumn DataField="CloseOutID"
HeaderText="CloseOut ID" UniqueName="CloseOutID" Visible ="false" ReadOnly="true" />
<telerik:TreeListTemplateColumn ReadOnly="true" >
<HeaderTemplate>
<asp:Label ID="lblheaderRetentionOutputFile" runat="server" Text="RetentionOutputFile"></asp:Label>
</HeaderTemplate>
<ItemTemplate >
<asp:HyperLink ID="hlinkRetentionOutputFile" Visible="true" NavigateUrl='<%# Eval("RetentionOutputFile") %>' runat="server">Browse</asp:HyperLink>
<asp:Image ID="imgRetentionOutputFile" Visible ="false" ImageUrl="~/Images/folder.gif" runat="server" />
</ItemTemplate>
</telerik:TreeListTemplateColumn>
<telerik:TreeListTemplateColumn >
<HeaderTemplate>
<asp:Label ID="lblStatus" runat="server" Text="Status" ></asp:Label>
</HeaderTemplate>
<ItemTemplate>
<asp:HiddenField ID="hdfStatusCode" runat="server" Value='<%# Eval("StatusCode") %>' />
<asp:Label ID="lblStatusMessage" runat="server" Text='<%# Eval("Status") %>' ></asp:Label>
<asp:Button ID="btnActivate" runat="server" Text="Activate" Visible="false" CommandName="Activate" CommandArgument='<%# Eval("TaskID") %>' />
</ItemTemplate>
<EditItemTemplate>
<asp:HiddenField ID="hdfStatusCode" runat="server" Value='<%# Eval("StatusCode") %>' />
<asp:Label ID="lblStatusMessage" runat="server" Text='<%# Eval("Status") %>' ></asp:Label>
<asp:Button ID="btnActivate" runat="server" Text="Activate" Visible="false" CommandName="Activate" CommandArgument='<%# Eval("TaskID") %>' />
</EditItemTemplate>
</telerik:TreeListTemplateColumn>
<telerik:TreeListTemplateColumn >
<HeaderTemplate>
<asp:Label ID="lblExpiryDate" runat="server" Text="Expiry Date"></asp:Label>
</HeaderTemplate>
<ItemTemplate>
<asp:Label ID="lblExpirationDate" runat="server" Text='<%# Eval("ExpirationDate") %>'></asp:Label>
</ItemTemplate>
<EditItemTemplate>
<asp:HiddenField ID="hdfJobID" runat="server" Value='<%# Eval("JobID") %>' />
<asp:TextBox ID="txtExpirationDate" Width="100px" CssClass="radEnabledCss_Default" Text='<%# Eval("ExpirationDate", "{0:d}") %>'
onclick="showPopup(this, event);" onfocus="showPopup(this, event);" onblur="parseDate(this, event)"
runat="server" >
</asp:TextBox>
</EditItemTemplate>
</telerik:TreeListTemplateColumn>
</Columns>
</telerik:RadTreeList>
Hi,
I have one combobox in Grid and i want to show this combobox as Multiple Rows and column and i am using the following css for this combobox
.multipleRowsColumns .rcbItem,
.multipleRowsColumns .rcbHovered
{
float:left;
margin:0 1px;
min-height:13px;
overflow:hidden;
padding:2px 19px 2px 6px;
width:125px;
}
This style sheet is not woking for combobox that is in grid.
Can anyone tell me the css that will apply to the combobox so that i can get the combobox as Multiple row and column in grid ?
Thanks,
--Jai
Dim rtb As New RadTextBox
rtb.ClientEvents.OnValueChanged =
"gettext('" & row("LField").ToString.Trim & "')"
Problem 1 : The event fires after the above line executes
Problem 2 : I getting the following Javascript Error
Microsoft JScript runtime error: Sys.InvalidOperationException: Handler must be a function.
the function in Seperate Javascript file
how to solve this Problem
good day for u all
i've a radschadular that gets data from oracle DB the schadual is all credits avilable for students each credit has a group type/types under that group type the appointements avilablefor it.
what i need is
when the student checks one group type he can't leave to another credit if it hase more than group type untill checking all.
iwrote oracle procedure as follow to check this in the DB.
X VARCHAR2(20);
A NUMBER;
B NUMBER;
BEGIN
SELECT COUNT (GROUP_TYPE) INTO A
FROM OLR.VIEW_COURSE_GROUP_TYPE
WHERE COURSEID = OLR.complete_group_type.COURSEID;
SELECT COUNT(A.GROUP_TYPE_CD) INTO B
FROM OLR.STUDENT_REG_GROUP A
WHERE A.STUDENTID = OLR.complete_group_type.STUDENTID
AND A.SEMESTERID = (SELECT SEMESTERID FROM MSA.SEMESTER@MSA WHERE CURRENT_SEM = '1')
AND A.COURSEID = OLR.complete_group_type.COURSEID;
IF A<>B THEN
SELECT GROUP_TYPE INTO X
FROM OLR.VIEW_COURSE_GROUP_TYPE
WHERE COURSEID = OLR.complete_group_type.COURSEID
AND GROUP_TYPE NOT IN (SELECT A.GROUP_TYPE_CD
FROM OLR.STUDENT_REG_GROUP A
WHERE A.STUDENTID = OLR.complete_group_type.STUDENTID
AND A.SEMESTERID = (SELECT SEMESTERID FROM MSA.SEMESTER@MSA WHERE CURRENT_SEM = '1')
AND A.COURSEID = OLR.complete_group_type.COURSEID);
RETURN ('YOU NOT CHOOSE GROUP TYPE '||X);
END IF;
EXCEPTION WHEN TOO_MANY_ROWS THEN
RETURN ('PLEASE CHOOSE ALL COURSE GROUP TYPE');
END complete_group_type;
but i could't find the approbriate event to use it n how i used the rad shadular event appointement update
but i don't know how to use the upove function.