在formview控件上应用字符限制

时间:2016-01-26 17:47:24

标签: jquery asp.net webforms formview

我有以下formview,需要对htmleditor应用字符限制。环顾四周之后,没有内置的支持。我正在尝试使用jquery来应用限制,但是无法找出选择器来定位htmleditor。

ButtonField

表单视图生成iframe,并将文本放在body标签中。 iframe是在用户单击编辑按钮时动态生成的,这是默认行为,没有什么特别之处。但这就是我不能简单地用一个简单的id选择器来控制控件的原因。

要复杂化,如果使用jquery,我必须使用jquery 1.4.2。

我尝试过很多变种......

// CommandName property to determine which button was clicked.
if(e.CommandName=="ExportToExcel")
{
  // Convert the row index stored in the CommandArgument
  // property to an Integer.
  int index = Convert.ToInt32(e.CommandArgument);

// Rest of your code goes here to export to excel

}

//
// MarkUpCode
//
 <asp:ButtonField  CommandName="ExportToExcel" DataTextField="string"  DataTextFormatString="string" HeaderText="string" ImageUrl="uriOfImage" ShowHeader="True|False" SortExpression="string" Text = "Export"> </asp:ButtonField>

1 个答案:

答案 0 :(得分:0)

使用jquery遍历iframe代码:

$("#fvWebDescription").contents().find("selector").hide();

使用此代码段,您可以在表单上添加处理程序。