Spiderly LogoSPIDERLY
PlaygroundFAQDocs
PlaygroundFAQDocs

Try Spiderly Online Demo.
Live Playground.

Here you can test and explore Spiderly's features live. Please note that the available features on this page are quite limited compared to the full product.

Describing the App

Here, we are describing the app using C# classes, properties and attributes. After the class save, any changes made here will be reflected in the 'App Demo' section below. We helped you a little bit with 1. User and 2. Gender classes, but if you want delete them and start fresh.
1
*
Class attributes
1
*
TranslatePluralEn
Properties
1
*
*
long
Property attributes
1
*
Required
2
*
*
string
Property attributes
1
*
DisplayName
2
*
Required
3
*
*
Gender
Property attributes
1
*
UIControlWidth
col-12
4
*
*
string
Property attributes
1
*
UIControlType
File
[TranslatePluralEn("Users")]
public class User {
[Required]
public long Id { get; set; }
[DisplayName]
[Required]
public string Name { get; set; }
[UIControlWidth("col-12")]
public Gender Gender { get; set; }
[UIControlType("File")]
public string Logo { get; set; }
}
2
*
Class attributes
1
*
TranslatePluralEn
Properties
1
*
*
long
Property attributes
1
*
Required
2
*
*
string
Property attributes
1
*
DisplayName
2
*
Required
[TranslatePluralEn("Genders")]
public class Gender {
[Required]
public long Id { get; set; }
[DisplayName]
[Required]
public string Name { get; set; }
}

App Demo

Here is the result of the C# classes initialized in the 'Describing the App' section above. Change the classes yourself, save them and see live changes here.
SPIDERLY
U
  • Home
  • Users
  • Genders
Switch between pages and test the generated app!