* NewProjectModel.cs: * ITContentProvider.csproj: refactoring * WebApiConfig.cs: Web Api Config * IModule.cs: * RssFeeds.cs: * IRenderer.cs: * Blog.cs: * ITagHandler.cs: * ViewRenderer.cs: * Comment.cs: * IViewRenderer.cs: * People.cs: * SignIn.cs: * BlogEntry.cs: * AuthToken.cs: * BlogHelper.cs: * DataAccess.cs: * Estimate.cs: * BlogManager.cs: * Writting.cs: * AskForADate.cs: * RestoreQuery.cs: * Basket.cs: * BlogProvider.cs: * CalendarList.cs: * Commande.cs: * StatusChange.cs: * WebFileInfo.cs: * WorkFlowManager.cs: * Euro.cs: * Unit.cs: * Text.cs: * Profile.cs: * Note.cs: * Link.cs: * BlogEditEntryModel.cs: * FindBlogEntryFlags.cs: * NewProjectModel.cs: * CalendarListEntry.cs: * CalendarEntryList.cs: * IContentProvider.cs: * CommandStatus.cs: * Label.cs: * Price.cs: * BlogEntryCollection.cs: * Period.cs: * Scalar.cs: * BlogEditCommentModel.cs: * Option.cs: * NpgsqlContentProvider.cs: * Product.cs: * LoginModel.cs: * Service.cs: * Catalog.cs: * Currency.cs: * NewEstimateEvenArgs.cs: * CheckBox.cs: * SaleForm.cs: * FileSystemManager.cs: * FormInput.cs: * TextInput.cs: * NewRoleModel.cs: * FileInfoCollection.cs: * FilesInput.cs: * NewAdminModel.cs: * SelectItem.cs: * SelectInput.cs: * RadioButton.cs: * StockStatus.cs: * Provider.cs: * DirNotFoundException.cs: * FormElement.cs: * ProductImage.cs: * WebFileInfoCollection.cs: * CatalogHelper.cs: * CatalogManager.cs: * RegisterViewModel.cs: * InvalidDirNameException.cs: * PhysicalProduct.cs: * CatalogProvider.cs: * ProductCategory.cs: * OrderStatusChangedEventArgs.cs: * ProviderCollection.cs: * WorkflowConfiguration.cs: * BlogProviderConfigurationElement.cs: * BlogProvidersConfigurationSection.cs: * BlogProvidersConfigurationCollection.cs: * CatalogProviderConfigurationElement.cs: * CatalogProvidersConfigurationSection.cs: * CatalogProvidersConfigurationCollection.cs: xml doc * SalesCatalog.csproj: * XmlCatalogProvider.cs: Maps the catalog using System.Web * BasketController.cs: * FrontOfficeController.cs: a Basket controller * Global.asax.cs: Session in Web Api * App.master: WebApi bas url as Javascript var 'apiBaseUrl' * Index.aspx: !!not sure of this change. * Web.csproj: compiles now includes WebApiConfig.cs * style.css: link background color * FileSystemController.cs: a file system controller
96 lines
2.2 KiB
C#
96 lines
2.2 KiB
C#
using System;
|
|
|
|
namespace Yavsc.Model.FrontOffice
|
|
{
|
|
/// <summary>
|
|
/// Text input.
|
|
/// </summary>
|
|
public class TextInput:FormInput
|
|
{
|
|
|
|
#region implemented abstract members of FormInput
|
|
private string tpe = null;
|
|
/// <summary>
|
|
/// Gets the type.
|
|
/// </summary>
|
|
/// <value>The type.</value>
|
|
public override string Type {
|
|
get {
|
|
return tpe;
|
|
}
|
|
}
|
|
#endregion
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="Yavsc.Model.FrontOffice.TextInput"/> class.
|
|
/// </summary>
|
|
public TextInput ()
|
|
{
|
|
tpe = "text";
|
|
}
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="Yavsc.Model.FrontOffice.TextInput"/> class.
|
|
/// </summary>
|
|
/// <param name="txt">Text.</param>
|
|
public TextInput (string txt)
|
|
{
|
|
tpe = "text";
|
|
text = txt;
|
|
}
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="Yavsc.Model.FrontOffice.TextInput"/> class.
|
|
/// </summary>
|
|
/// <param name="type">Type.</param>
|
|
/// <param name="txt">Text.</param>
|
|
public TextInput (string type, string txt)
|
|
{
|
|
tpe = type;
|
|
text = txt;
|
|
}
|
|
|
|
string text = null;
|
|
|
|
/// <param name="t">T.</param>
|
|
public static implicit operator string(TextInput t)
|
|
{
|
|
return t.text;
|
|
}
|
|
/// <param name="t">T.</param>
|
|
public static implicit operator TextInput(string t)
|
|
{
|
|
return new TextInput(t);
|
|
}
|
|
/// <summary>
|
|
/// Gets or sets the default value.
|
|
/// </summary>
|
|
/// <value>The default value.</value>
|
|
public string DefaultValue {
|
|
get {
|
|
return text;
|
|
}
|
|
set {
|
|
text = (string) value;
|
|
}
|
|
}
|
|
|
|
private bool multiline = false;
|
|
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether this <see cref="Yavsc.Model.FrontOffice.TextInput"/> multi line.
|
|
/// </summary>
|
|
/// <value><c>true</c> if multi line; otherwise, <c>false</c>.</value>
|
|
public bool MultiLine { get { return multiline; } set { multiline = value; } }
|
|
|
|
/// <summary>
|
|
/// Tos the html.
|
|
/// </summary>
|
|
/// <returns>The html.</returns>
|
|
public override string ToHtml ()
|
|
{
|
|
|
|
return MultiLine?
|
|
string.Format ("<textarea id=\"{0}\" name=\"{1}\">{2}</textarea>", Id,Name,DefaultValue)
|
|
: string.Format ("<input type=\"text\" id=\"{0}\" name=\"{1}\" value=\"{2}\"/>", Id,Name,DefaultValue);
|
|
}
|
|
}
|
|
}
|
|
|