Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
297 views
[Correct title of the post] - Click a button on press of enter key

Hi Folks,

I have a rad window, which has some text content and 'Yes' & 'No' buttons. [Note, there are no text boxes present].
When the enter button is pressed, the 'Yes' button click must be triggered.

How do I do this?

Regards,
Saravanan
Princy
Top achievements
Rank 2
 answered on 16 Nov 2012
4 answers
253 views
Hopefully, this is a simple request. I just want to make the RadSplitBar a little taller so it is easier for our users to grab when resizing their panes. I tried setting the Height property of the RadSplitBar control, but it doesn't change anything. If I need to do this with css, example code would be greatly appreciated. As you can see by my example, my requirement is to use CollapseMode="Both", so I may need to supply taller images for all these situation as well.

I have attached the screen shot of what it looks like by default, here is the page source.

Thanks,

-Gary

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="SplitterTest.aspx.cs" Inherits="WebAppTesting.SplitterTest" %>
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <telerik:RadScriptManager ID="RadScriptManager1" runat="server">
    </telerik:RadScriptManager>  
    <div>
        <telerik:RadSplitter ID="RadSplitter1" runat="server" Orientation="Horizontal" >
            <telerik:RadPane ID="RadPane1" runat="server" BackColor="Red">
            </telerik:RadPane>           
            <telerik:RadSplitBar ID="RadSplitBar1" runat="server" CollapseMode="Both" Height="20px">
            </telerik:RadSplitBar>
            <telerik:RadPane ID="RadPane2" runat="server" BackColor="Purple">
            </telerik:RadPane>           
        </telerik:RadSplitter>
    </div>
    </form>
</body>
</html>
Gary
Top achievements
Rank 1
 answered on 15 Nov 2012
4 answers
148 views
Hi,
I have RadAjaxManager control on my master page and 2 RadUpload controls on my content page. Upon postback,I'm getting uploadfiles counts to zero even though I upload files. I know that we can not write files while performing AjaxRequest, so how can I disable Ajax request for this particular page and not for the other pages ?

I have tried following code on my content page but It doesnt work either.
RadAjaxManager AjManager = Master.FindControl("RadAjaxManager1") as RadAjaxManager;
AjManager.EnableAJAX = false;


Thanks

Tejas
Waseem
Top achievements
Rank 1
 answered on 15 Nov 2012
3 answers
151 views
I have a Radgrid with a custom column(rowID) added to it.
The custom column is in hidden mode in the radgrid.
All the columns in the grid are built dynamically at runtime, no template used.
And EditMode = Popup.

While Inserting or Updating rows, the custom column (rowID) is displayed at the top of the EditFormat.
I want to hide the first row which contains the label for custom column and its value.
How can I hide that column and its value?


Krutika
Top achievements
Rank 1
 answered on 15 Nov 2012
1 answer
82 views
How can I access each item on the edit form when the row is being updated/ inserted?
<MasterTableView EditMode="PopUp" CommandItemSettings-ShowAddNewRecordButton="True" DataKeyNames="RowId" >

keyfield RowID is getting displayed on the popup. I want to hide it.
Krutika
Top achievements
Rank 1
 answered on 15 Nov 2012
4 answers
224 views
Hello,

I use on .net Two FrameWork Telerik and Strataframe.

Strataframe can to interact with the sqlserver like entity but it's better.
For Example I can binding textbox with my Business Object Like this.

<SFWeb:TextBox runat="server" ID="Txt1" BindingField="MyField"  BusinessObjectName="TableBo" ></SFWeb:TextBox>

it's work on WebForm , on WebUserControl add on the WebForm,
and if i use the RadTabStrip , it's work in RadPageView so

But if i work with the PageViewCreated to load WebUserControl my Textbox doesn't load
the field on my Business Object. What 's the difference between PageViewCreated and load in the Webform ?

have you some code to fix it ?

It's important to use Strataframe cause it can to Bind in to Way,

With the simple syntax : this.TableBo.Save()  , i save in sql table without to reload the Value of the textbox.


Thanks For your help

Olivier,

Olivier
Top achievements
Rank 2
 answered on 15 Nov 2012
2 answers
91 views
I have a list view control within a user control that is exhibiting unexpected behavior.  The list view is within a panel that is itself within a RadAjaxLoadingPanel.  The panel is registered with a RadAjaxManager.  The list view is populated from an object data source.  There is an edit template defined with an update button inside it to issue the update command.  The user clicks a button to issue the edit command and the edit template is displayed.  When the update button is pressed, the ajax loading screen covers the panel.  When the ajax call is complete, the edit template has not gone away.  The item command event of the list view is triggered, but not the updating event of the object data source.  I ran this test in debug mode and did not receive any client or server error feedback.  It also seems to work when connected to a local database, but not our main testing one.  This suggests it has something to do with timing.  I cannot think of any further testing to conduct because the remaining processing of the update happens within the Telerik list view code.  Are there any ideas from the community on how to further debug this issue?
Jason
Top achievements
Rank 1
 answered on 15 Nov 2012
1 answer
158 views

I am retrieving data from database using RadGrid.  I have more columns in my RadGrid, so I need to show RadGrid horizontal scroll to keep the page from expanding but disable the vertical scroll so height of the grid should expand to always display all rows in the grid.  I got the result but there is whitespace in the bottom of the RadGrid.


My UI of the RadGrid:
-------------------------------

 <table style="table-layout: fixed;" width="100%" cellpadding="0" cellspacing="0"

        border="0">

        <tr>

            <td>

                <telerik:RadGrid ID="RadGrid1" runat="server" AllowPaging="false" PagerStyle-AlwaysVisible="true"

                    CellPadding="0" CellSpacing="0" GridLines="None" Skin="Metro" CssClass="RadGrid_CBGrid"

                    HorizontalAlign="Left" AutoGenerateColumns="False" OnItemCommand="RadGrid1_ItemCommand"

                    OnDataBound="RadGrid1_DataBound">

                    <ClientSettings>

                        <Selecting CellSelectionMode="SingleCell"></Selecting>

                        <Scrolling AllowScroll="true" UseStaticHeaders="True"></Scrolling>

                    </ClientSettings>

                    <MasterTableView HierarchyLoadMode="Client" DataKeyNames="EmpID" AllowMultiColumnSorting="true"

                        Name="Parent">

                        <CommandItemSettings ExportToPdfText="Export to PDF"></CommandItemSettings>

                        <RowIndicatorColumn Visible="True" FilterControlAltText="Filter RowIndicator column">

                        </RowIndicatorColumn>

                        <ExpandCollapseColumn Visible="True" FilterControlAltText="Filter ExpandColumn column">

                        </ExpandCollapseColumn>

                        <Columns>

                            <telerik:GridBoundColumn DataField="EmpID" EmptyDataText="NA" HeaderText="Emp ID"

                                UniqueName="EmpID">

                            </telerik:GridBoundColumn>
                          and so on......
                          -------------------
                        </Columns>

                        <EditFormSettings>

                            <EditColumn FilterControlAltText="Filter EditCommandColumn column">

                            </EditColumn>

                        </EditFormSettings>

                    </MasterTableView>

                    <FilterMenu EnableImageSprites="False">

                    </FilterMenu>

                </telerik:RadGrid>

            </td>

        </tr>

    </table>

 

 

If I changed  ClientSettings-Scrolling-AllowScroll="true" in RadGrid and <Scrolling AllowScroll="false" UseStaticHeaders="True"></Scrolling>

I got the result and there is NO whitespace in the bottom of the RadGrid BUT Horizontal scroll bar is NOT coming in my RadGrid.

 

So can anybody please give me the solution.

Thanks in Advance.

Pavlina
Telerik team
 answered on 15 Nov 2012
1 answer
108 views

I am retrieving data from database using RadGrid.  I have more columns in my RadGrid, so I need to show RadGrid horizontal scroll to keep the page from expanding but disable the vertical scroll so height of the grid should expand to always display all rows in the grid.  I got the result but there is whitespace in the bottom of the RadGrid.


My UI of the RadGrid:
-------------------------------

 <table style="table-layout: fixed;" width="100%" cellpadding="0" cellspacing="0"

        border="0">

        <tr>

            <td>

                <telerik:RadGrid ID="RadGrid1" runat="server" AllowPaging="false" PagerStyle-AlwaysVisible="true"

                    CellPadding="0" CellSpacing="0" GridLines="None" Skin="Metro" CssClass="RadGrid_CBGrid"

                    HorizontalAlign="Left" AutoGenerateColumns="False" OnItemCommand="RadGrid1_ItemCommand"

                    OnDataBound="RadGrid1_DataBound">

                    <ClientSettings>

                        <Selecting CellSelectionMode="SingleCell"></Selecting>

                        <Scrolling AllowScroll="true" UseStaticHeaders="True"></Scrolling>

                    </ClientSettings>

                    <MasterTableView HierarchyLoadMode="Client" DataKeyNames="EmpID" AllowMultiColumnSorting="true"

                        Name="Parent">

                        <CommandItemSettings ExportToPdfText="Export to PDF"></CommandItemSettings>

                        <RowIndicatorColumn Visible="True" FilterControlAltText="Filter RowIndicator column">

                        </RowIndicatorColumn>

                        <ExpandCollapseColumn Visible="True" FilterControlAltText="Filter ExpandColumn column">

                        </ExpandCollapseColumn>

                        <Columns>

                            <telerik:GridBoundColumn DataField="EmpID" EmptyDataText="NA" HeaderText="Emp ID"

                                UniqueName="EmpID">

                            </telerik:GridBoundColumn>
                          and so on......
                          -------------------
                        </Columns>

                        <EditFormSettings>

                            <EditColumn FilterControlAltText="Filter EditCommandColumn column">

                            </EditColumn>

                        </EditFormSettings>

                    </MasterTableView>

                    <FilterMenu EnableImageSprites="False">

                    </FilterMenu>

                </telerik:RadGrid>

            </td>

        </tr>

    </table>

 

 

If I changed  ClientSettings-Scrolling-AllowScroll="true" in RadGrid and <Scrolling AllowScroll="false" UseStaticHeaders="True"></Scrolling>

I got the result and there is NO whitespace in the bottom of the RadGrid BUT Horizontal scroll bar is NOT coming in my RadGrid.

 

So can anybody please give me the solution.

 

 

Thanks in Advance.

Pavlina
Telerik team
 answered on 15 Nov 2012
1 answer
293 views
is there any way to paste only plain text from HTML content on RadEditor.
When we are going to paste content of HTML  on RadEditor ,we have to filter all links and images from HTML content and only Palain text shold display on RadEditor's Content area.
any idea?
Note: With out using  PastePlainText tool


Best Regards,
Anwar

Rumen
Telerik team
 answered on 15 Nov 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?