Telerik Forums
UI for ASP.NET AJAX Forum
10 answers
264 views
When I attempt to use the CAPTCHA functionality, we get a broken image link above the field.  any suggestions?

thanks.

Pero
Telerik team
 answered on 27 Aug 2010
1 answer
95 views
I believe this is a problem with the flash uploader but it could just be an configuration issue on my part. 

First I am trying to limit number of files uploaded to just a single file. I am doing this in code behind so I have set the following in attempt to stop the user from being able to hit select multiple times and add new files:
radAsyncUpload.MultipleFileSelection = MultipleFileSelection.Disabled;
radAsyncUpload.MaxFileInputsCount = 1;
radAsyncUpload.InitialFileInputsCount = 1;
radAsyncUpload.AutoAddFileInputs = false;

The textbox and the select button do go away after a users selects the first file, but simply clicking on the first file name OR THE REMOVE TEXT BUTTON will cause the browse popup to come up again and the user can select another file. Once they do this the new file is added to the list (with its own remove text button) resulting in multiple files. 

If there are multiple files in the list you can never remove the first file, clicking on the remove text simply popups up the browse for file window in order to add a new file. Clicking on remove text for any file after the first DOES work correctly by removing the file.

Any suggestions on configuration options I can try to fix these issues?
Thanks for any help you can provide.

Matt
Genady Sergeev
Telerik team
 answered on 27 Aug 2010
3 answers
173 views
My OnClientNodeChecked event code (Javascript Code) between

trackChanges and commitChanges are not get executed

if i am having server side event onnodecheck

I am trying to simulate checkboxes as radio buttons. and uncheking the previous selected checkbox from JS. but it is not uncheking previous checkboxes.

Yana
Telerik team
 answered on 27 Aug 2010
1 answer
122 views
AJAX DEMO --> FILTER

Check the links under "Seamless Integration" section

Seamless Integration
RadFilter integrates tightly with RadListView and RadGrid to enable visual filtering at no programming cost.
Sebastian
Telerik team
 answered on 27 Aug 2010
5 answers
461 views
Followed the directions in adding a custom skin (EnableEmbeddedSkins="false", directory structure, rename, etc.)
Got the skin to work with base Vista css. Now when I try to modify the "rcbItem" class in my custom CSS it won't take. I am trying to change the padding. I set the padding to 0 but when I inspect the CSS resources loaded with DebugBar I still see the Telerik DLL generating this WebResource.axd and it seems to override my custom style.

/* Rule N°50 from /WebResource.axd?d=E8zhOF-IazAtz5qciqUY9gMwF1Nx6baK0ZAdEkqrjJx-o8HuvngvfAVyz4OcUqi8l9oITMy5IuIHW8RO7_Y93A2&t=633957930320000000 */
.RadComboBoxDropDown .rcbItem {
    PADDING-BOTTOM:2px;  
    MARGIN:0px 1px; 
    PADDING-LEFT:6px;   
    PADDING-RIGHT:6px;   
    PADDING-TOP:2px 
}

 
How can I get rid of these emdedded CSS links. Need the padding-top-bottom to be 0.
Kamen Bundev
Telerik team
 answered on 27 Aug 2010
2 answers
75 views
Hi!
How can i get text to wrap around an image like this:

http://drupal.org/files/issues/Screenshot-imagepicker.png

with the tools in the editor?


Thanks, Lautaro.
Lautaro
Top achievements
Rank 1
 answered on 27 Aug 2010
2 answers
175 views

I have a grid where you select the grid item via a checkbox inside a templatecolumn, when you click on the checkbox it highlights the grid item and then i do other operations on the grid selected items.

The problem is that when you click one row via the checkbox other functionality does not work after that intial click, for example if i wanted to select another row via the checkbox it will not highlight the row and partial postback does not occur, i can resolve the issue by turning off ajax.

So basically you click any checkbox in any row and then functions do not work for instance the authorise command does not work, it is like the page invalid.

Attached grid html:

<telerik:RadGrid 
    ID="paymentsGrid" 
    runat="server"
    AllowSorting="False" 
    AllowPaging="False"
    AllowFilteringByColumn="False"
    AllowAutomaticInserts="True"
    AllowAutomaticUpdates="True"
    AllowAutomaticDeletes="True" 
    AutoGenerateColumns="False"
    MasterTableView-HeaderStyle-Wrap="false"
    MasterTableView-ItemStyle-Wrap="false" 
    GridLines="None" 
    ShowFooter="true"
    EnableLinqExpressions="false"
    onitemdatabound="paymentsGrid_ItemDataBound"
    OnItemCommand="paymentsGrid_OnItemCommand"
    ShowHeader="true"
    AllowMultiRowSelection="true">
      
    <MasterTableView CommandItemDisplay="Top">
      
     <CommandItemTemplate>
         <div style="margin:5px;padding:5px">
            <div style="float:right">
            <asp:LinkButton ID="lbAuthorise" runat="server" CommandName="Authorise" OnClientClick="javascript:if(!confirm('Are you sure you want to authorise the selected payments?')){return false;}">Authorise</asp:LinkButton>
            </div>
        </div>
  
         </CommandItemTemplate>  
           
        <RowIndicatorColumn>
            <HeaderStyle Width="20px"></HeaderStyle>
        </RowIndicatorColumn>
  
        <ExpandCollapseColumn>
            <HeaderStyle Width="20px"></HeaderStyle>
        </ExpandCollapseColumn>
          
        <Columns>
          
            <telerik:GridBoundColumn DataField="PeriodFrom" ReadOnly="true" UniqueName="PeriodFrom" HeaderText="From" DataFormatString="{0:dd/MM/yyyy}"></telerik:GridBoundColumn>
            <telerik:GridBoundColumn DataField="PeriodTo" ReadOnly="true" UniqueName="PeriodTo" HeaderText="To" DataFormatString="{0:dd/MM/yyyy}"></telerik:GridBoundColumn>
            <telerik:GridBoundColumn DataField="ContractReference" ReadOnly="true" UniqueName="ContractReference" HeaderText="CT-No"></telerik:GridBoundColumn>
            <telerik:GridBoundColumn DataField="ContractName" ReadOnly="true" UniqueName="ContractName" HeaderText="Contract"></telerik:GridBoundColumn>
            <telerik:GridBoundColumn DataField="SiteName" ReadOnly="true" UniqueName="SiteName" HeaderText="Site"></telerik:GridBoundColumn>
            <telerik:GridBoundColumn DataField="TotalCost" ReadOnly="true" UniqueName="TotalCost" HeaderText="Cost" Aggregate="Sum" DataFormatString="{0:C2}" FooterAggregateFormatString="Total: {0:C2}"></telerik:GridBoundColumn>
            <telerik:GridBoundColumn DataField="AuthorisedBy" ReadOnly="true" UniqueName="AuthorisedBy" HeaderText="Authorised By"></telerik:GridBoundColumn>
            <telerik:GridBoundColumn DataField="AuthorisedWhen" ReadOnly="true" UniqueName="AuthorisedWhen" HeaderText="Authorised When"></telerik:GridBoundColumn>
            <telerik:GridBoundColumn DataField="AuthorisedAmount" ReadOnly="true" UniqueName="AuthorisedAmount" HeaderText="Authorised Amount" Aggregate="Sum" DataFormatString="{0:C2}" FooterAggregateFormatString="Total Authorised: {0:C2}"></telerik:GridBoundColumn>
            <telerik:GridBoundColumn DataField="SiteID" ReadOnly="true" Display="false" UniqueName="SiteID"></telerik:GridBoundColumn>
            <telerik:GridBoundColumn DataField="ContractID" ReadOnly="true" Display="false" UniqueName="ContractID"></telerik:GridBoundColumn>
            <telerik:GridBoundColumn DataField="PaymentID" ReadOnly="true" Display="false" UniqueName="PaymentID"></telerik:GridBoundColumn>
             
            <telerik:GridTemplateColumn UniqueName="selectionColumn" AllowFiltering="false" HeaderStyle-Width="27px">
            <HeaderTemplate>
            <asp:CheckBox id="chkPaymentGridHeader" OnCheckedChanged="paymentsGrid_HeaderCheckChanged" AutoPostBack="True" runat="server"></asp:CheckBox>
            </HeaderTemplate>
            <ItemTemplate>
            <asp:CheckBox id="chkPaymentGridItem" OnCheckedChanged="paymentsGrid_ItemCheckChanged" AutoPostBack="True" runat="server"></asp:CheckBox>
            </ItemTemplate>
            </telerik:GridTemplateColumn
                      
        </Columns>
          
        <ItemStyle Wrap="False"></ItemStyle>
        <HeaderStyle Wrap="False"></HeaderStyle>
        <FooterStyle Wrap="false"></FooterStyle>
      
    </MasterTableView>
  
    
</telerik:RadGrid>


The checkbox events:
protected void paymentsGrid_HeaderCheckChanged(object sender, EventArgs e)
         {
             if ((sender as CheckBox).Checked)
             {
                 foreach (GridDataItem dataItem in paymentsGrid.MasterTableView.Items)
                 {
                     (dataItem.FindControl("chkPaymentGridItem") as CheckBox).Checked = true;
                     dataItem.Selected = true;
                 }
             }
             else
             {
                 foreach (GridDataItem dataItem in paymentsGrid.MasterTableView.Items)
                 {
                     (dataItem.FindControl("chkPaymentGridItem") as CheckBox).Checked = false;
                     dataItem.Selected = false;
                 }
             }
         }
  
         protected void paymentsGrid_ItemCheckChanged(object sender, EventArgs e)
         {
             bool itemIsChecked = (sender as CheckBox).Checked;
  
             ((sender as CheckBox).Parent.Parent as GridItem).Selected = (sender as CheckBox).Checked;
  
         }


iam using version q1 2010

Thanks
Darren
Top achievements
Rank 1
 answered on 27 Aug 2010
2 answers
133 views
Hi

I got the RadControls_for_ASP.NET_AJAX_2010_2_713_dev.EXE from our application drive and installed it.

How can I check if I'm running a trial version or we bought this release?

Regards
Jef
Jef Claes
Top achievements
Rank 1
 answered on 27 Aug 2010
1 answer
128 views
Is there a way to prevent the content in the table of the RadDatePicker popup calendar from being indexed by Google, etc.?

I know there are other ways of solving the problem I'm having with that content showing up in search engine indexing, but I'd like an answer to this specific question, please. Thank you.
Dimo
Telerik team
 answered on 27 Aug 2010
1 answer
83 views

Hello,

I really don't where to post this question basically.

But I have problems in viewing Editor, Grid.

Editor looks overflowed before Ajax postback get resumed after ajax postback.

I have attached screen shot for before ajax view.

Image Before Postback

Now after postback my Editor look fine, problem get occur with Grid view.

Attached screen shot for after postback event.

Image after Posrtback

(I tried attaching files as an attachment, But it didnt  work)

Thanks

Ashish Sapkale

Dimo
Telerik team
 answered on 27 Aug 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?