Telerik Forums
UI for ASP.NET AJAX Forum
10 answers
181 views
Probably a bug, but i heard that telerik is on holiday :)

"Image (in image browser) is not selected after upload":
It all works well unti you already have 100+ files. Thats when image manager turns on paging (100 files per page) and when newly uploaded image isnt sorted out to the first page, you have to manually browse pages until you get to the page where the file is, then the file gets auto selected by Image manager.

So i'm guessing it was in plan to select the newly uploaded file, but the part where the correct page is selected isnt working?

Thanks for any help/workaround

re, Žiga
Rumen
Telerik team
 answered on 29 Dec 2010
4 answers
159 views

Hi

In my application we are using v2 telerik dll and following is the code used:
<rad:RadEditor ID="notificationDescriptionTextBox" runat="server" Width="89%" Height="150px" ToolsFile="~/library/RADControls/BasicTools.xml" RadControlsDir="~/RadControls/" ShowSubmitCancelButtons="false" StripFormattingOnPaste="Font,Span,MSWordRemoveAll,Css"></rad:RadEditor>

If I have some existing text in the RadEditor with some styles applied on it and thereafter if I copy any text from an alternate application i.e. word/onenote/etc., the copied text inherits the existing styles.My requirement is that the copied text should not inherit the existing text's styles and it should retain the bold.Please suggest me a solution to accomplish the requirement. 

Rumen
Telerik team
 answered on 29 Dec 2010
9 answers
334 views
how can I have GridBoundColumn called password and have this password show in TextMode = "password" that no one can see what is the password is for security reason..

I have RadGrid that has edit, insert, delete, update events...
Kannan
Top achievements
Rank 1
 answered on 29 Dec 2010
4 answers
568 views
I want to create a listbox dynamically and I want to put radiobuttons and Checkboxes in the listbox.
I want the listbox to be something like this:

<telerik:RadListBox runat="server" ID="RadListBox">
  <ItemTemplate>
     <table>
        <tr>
           <td>
              <asp:CheckBox ID="CheckBox1" runat="server" onclick="stopPropagation(event, this);" />
           </td>
           <td>
               <asp:RadioButton ID="RadioButton1" runat="server" GroupName="Type" onclick="SetUniqueRadioButton();" />
           </td>
           <td>
                <%# DataBinder.Eval(Container.DataItem,"FullName") %>
           </td>
         </tr>
       </table>
    </ItemTemplate>
 </telerik:RadListBox>

I was having trouble creating a listbox dynamically with the item template as desired. Could you tell me how to create the control in the required manner from the code.
Genady Sergeev
Telerik team
 answered on 29 Dec 2010
1 answer
76 views

Hi all,

I have a radscheduler with an inline template with a disabled textbox:

<telerik:RadScheduler ID="RadScheduler1" runat="server" DataSourceID="ObjectDataSource1"

DataEndField="EndDateTime" DataKeyField="Id" DataStartField="StartDateTime" DataSubjectField="Subject"

OverflowBehavior="Expand" StartEditingInAdvancedForm="False">

<InlineEditTemplate>

<div class="rsAdvancedEdit">

<div class="rsAdvContentWrapper">

<telerik:RadTextBox ID="SubjectTextBox" runat="server" Text='<%# Bind("Subject") %>'

Enabled="False" />

</div>

</div>

</InlineEditTemplate>

</telerik:RadScheduler>

If I click on the disabled textbox I get an error: "Microsoft JScript runtime error: 'undefined' is null or not an object"

in line

var b=h.split(" ");

Is this a bug or am I missing something...

regards,

Johan

 

Peter
Telerik team
 answered on 29 Dec 2010
4 answers
99 views
Hi,
I have a web form with RadEditor and input text,I want to put the cursor in the text input, so i use this code from http://www.telerik.com/help/aspnet-ajax/editor_setfocus.html
<body onload="SetFocusOnTextBox();">
   <form id="form1" runat="server">
   <asp:ScriptManager id="ScriptManager" runat="server"/>                             
   <telerik:radeditor runat="server" ID="RadEditor1">
       <Content>
           Here is sample content!
       </Content>
   </telerik:radeditor>
   <input type="text" id="text"/>
   <input type="button" value="Set Focus On RadEditor" onclick="SetFocusOnRadEditor()" />
   <script type="text/javascript">
   function SetFocusOnRadEditor()
   {
       var editor = $find("<%=RadEditor1.ClientID%>"); //get a reference to RadEditor client object
       editor.setFocus(); //set the focus on the the editor
   }
   function SetFocusOnTextBox()
   {
       var editor = $get("text"); //get a reference to the input textbox with id text
       editor.focus(); //set the focus on the the textbox
   }
   </script>
   </form>
</body>

It's OK with Forefox or chrome , but not work with IE 8

dali
Top achievements
Rank 1
 answered on 29 Dec 2010
1 answer
80 views
Hi,

I want to filter templategridcolumn same way as google filtering .iI found example of google filtering for griddatabound column and it work perfectly fine.In same way ,I want to filter template column.

Thanks
Swarnlata
Princy
Top achievements
Rank 2
 answered on 29 Dec 2010
1 answer
141 views
Hello,
          I would like to know whether I can accomplish what we have in gmail using RadTreeView control. When the user clicks on inbox on the left, it connects inbox with the email section on the right. Is it possible when a user selects a node in RadTreeView control I want to connect the node with a box on the right.

Thanks,
Bharani
Shinu
Top achievements
Rank 2
 answered on 29 Dec 2010
1 answer
53 views
Hello in my grid .. top of the grid Add new button when i click the button that time want to show all filed that i want to add. Snapshot i attach to this post .. but when i click on grid Edit button want to show only two field for edit

how to achieve this .. how to allow field to edit .. how to disabled other field

In attach file .. shown
Game Name and Game Price . i want to update when  i click on edit button
other wise .
display all fields on Add new record



thanks


Radoslav
Telerik team
 answered on 29 Dec 2010
1 answer
68 views
Hi there Telerik Friends,

I've tried searching for hours and cannot find an answer to this problem. Either I'm going about it the wrong way, or I'm missing something. Hopefully one of you will take the time to help me out!

My question is this:

I have a RadGrid with NestedViewTemplate. I followed the example here. My little test works pretty slick.

Here is a picture of my work-in-progress.

As you'll see -- when you expand a user... you get different Tabs. On the "Tools" tab I have one button to "Delete User". Instead of using a button, doing a postback, and firing off some server-side code, I decided it would be nice to have a "Do you really want to delete this user?" prompt.

I tried following this example to do a "Confirm Postback". Doesn't work though :(

Well, after playing with it for a while...  it works if it's OUTSIDE the NestedViewTemplate... but not when it's buried inside. Anyone else have this issue? Any tips on how to resolve this?

Thanks so much for your time.

-Josh
Radoslav
Telerik team
 answered on 29 Dec 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?