Tagged Questions
The databinder tag has no wiki summary.
7
votes
9answers
24k views
Formatting DataBinder.Eval data
How can I format data coming from a DataBinder.Eval statement in an ASPX page?
For example, I want to display the published date of the news items in a particular format in the homepage. I'm using ...
3
votes
3answers
254 views
http(/* argument here */) How is this Object (Http) being used without an explicit or implicit method?
In the example for coding with Json using Databinder Dispatch Nathan uses an Object (Http) without a method, shown here:
import dispatch._
import Http._
Http("http://www.fox.com/dollhouse/" ...
2
votes
4answers
156 views
C# - Looping trough a Repeater control and accessing values added via DataBinder.Eval()
I have a Repeater control that adds rows to a table. The data inside each cell comes from a Datatable that is bound to the repeater.
Simplified Example:
<asp:Repeater ID="Repeater1" ...
2
votes
1answer
461 views
Akka REST service + dispatch problem
I followed the example here. It works, fine. But now I need to perform some business logic in case get:Get =>
Required business logic includes using dispatch library. In a nutshell, I do a request ...
2
votes
1answer
82 views
Error while Embedding Xpath Code and Inline Server Tags
Grid View template field -
<% if ((Convert.ToInt64(XPath("NoOfGuests")) < 0))
{ %>
<asp:ImageButton ID="imgbtnAddResByList"
runat="server"
...
1
vote
1answer
97 views
Getting a 302 http redirect location with Databinder-Dispatch
With databinder-dispatch 0.8.3 I'm trying to get the redirect url from a 302 http response, but I get the following exception:
Caused by: dispatch.StatusCode: Unexpected response code: 302
Here's ...
1
vote
0answers
95 views
Using DataBinder for casting the whole object in one step
Is it possible to cast the whole object using DataBinder.Eval() instead of casting it by property. e.g.:
// instead of this
var p = new Person();
p.FirstName = ...
1
vote
2answers
450 views
Why is my Hibernate Query returning stale data?
Quick Version
Basically, I'm updating a Hibernate Table and subsequent queries are loading a stale value.
Detailed Version
Hibernate (3.3.1.GA) and EhCache (2.4.2).
Persisted Book object with a ...
1
vote
2answers
548 views
Why won't DataBinder.Eval work
I am trying to create a simple menu system using repeaters. In the system I want to use a different formatting for class sub items and am trying to use an If that checks the DataBinders results and ...
1
vote
1answer
748 views
Problem with Scala Dispatch Databinder library
I am using the Dispatch Databinder library for Http in Scala.
I have this method.
def testCheckPage(url:String):String = {
try {
var http = new Http
var request = new Request(url) ...
1
vote
2answers
316 views
How to get Castle MonoRail's DataBinder/SmartDispatcherController to bind against types containing properties that are interfaces?
We're using interfaces to represent entity classes in our domain model. We have concrete implementations of these by virtue of using LinqToSql. We have added a factory method to each LinqToSql class ...
0
votes
1answer
73 views
DataBinder.Eval error in asp.net
I have created a class doing some jobs like GridView inherit from System.Web.UI.WebControls.WebControl.
public class IHGridView : System.Web.UI.WebControls.WebControl
{
// inside here, actually ...
0
votes
2answers
36 views
Using databinder syntax inside a TD on aspx page?
I'm thinking this should be possible or something like it:
<td <%# "style=" DataBinder.Eval(Container.DataItem, "CustName") == "T" ? "border:none" : "border:solid"%>>
But it's not doing ...
0
votes
1answer
158 views
Externalize @InitBinder initialization into WebBindingInitializer
There are two major means of data binding initialization, but there is a drawback in the oldschool one, that I can't figure out. This annotation way is great :
@InitBinder("order")
public void ...
0
votes
2answers
125 views
How do I set up databinder dispatch to use in Eclipse?
I want to write some simple HTTP requests in Scala, but the Databinder Dispatch library only has instructions for sbt. As I'm a relative Eclipse newbie, can someone provide instructions on how I use ...
0
votes
0answers
444 views
Spring WebDataBinder for binding multiple fields into a field of type Date
Could please anybody figure out a way how to use Spring data binders for getting values of a few fields (integers) : year, month, day, hour, minute from request and bind them into a Date field ?
I ...
0
votes
1answer
480 views
Binding to a List<string> using DataBinder.Eval
I have the following object:
CrossTabDataObject
{
string RowName{get;set;};
int RowId{get;set;}
List<string> CellContents = new List <string>();
//Constructor..... etc.
}
...
0
votes
3answers
2k views
Using DataBinder.Eval() in style attribute of an asp.net control
I've a asp.net linkbutton inside asp.net repeater control which renders multiple link buttons. I want to set the style of each and every linkbutton dynamically.
I'm trying
...
0
votes
5answers
283 views
Accessing object property as string and setting its value
I have an object in csharp from the class Account
each account have a owner, reference, etc.
One way I can access an accounts properties is through accessors like
account.Reference;
but I would ...
0
votes
4answers
2k views
DataBinder.Eval in c#
Hi anybody know how to use databinder.eval in c#
Actually I've tried this
LinkButton lnkName = new LinkButton();
lnkName.CommandArgument = DataBinder.Eval("object","<%#COURSE_ID%>");
it is ...
0
votes
0answers
48 views
Looking for guidance on data binding
Is their any mechanism in the .net framework for a binding mechanism between say as set of data source objects and an object to be built from them. 3.5+.
I'm not looking for binding to asp.net or ...